home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Presen… 1994 February Supplement / ARPL-Feb-94-Supplement-PowerPC.iso / 3rd Party PowerPC Demo Apps / Diehl Graphsoft MiniCad-G / German MiniCad Demo (Click Me!) / German MiniCad Demo (Click Me!).rsrc / STR#_7026.txt < prev    next >
Encoding:
Text File  |  1994-01-18  |  859 b   |  33 lines

  1. MouseDown(VAR X,Y : REAL) : BOOLEAN;
  2.  
  3. Returns True if mouse is clicked and also returns the X,Y location, otherwise it returns FALSE
  4.  
  5. KeyDown(VAR AsciiCode : INTEGER) : BOOLEAN;
  6.  
  7. Returns True if a non-modifier key has been pressed and also returns the AsciiCode of the key that was pressed, otherwise FALSE is returned
  8.  
  9. AutoKey(VAR AsciiCode : INTEGER) : BOOLEAN;
  10.  
  11. Returns True if a non-modifier key has been pressed and also returns the AsciiCode of the key that was pressed, otherwise FALSE is returned
  12.  
  13. GetMouse(VAR X,Y : REAL);
  14.  
  15. Returns the X,Y coordinates of the mouse without clicking the mouse
  16.  
  17. Option : BOOLEAN;
  18.  
  19. Returns TRUE if the OPTION key was pressed
  20.  
  21. CapsLock : BOOLEAN;
  22.  
  23. Returns TRUE if the CAPS LOCK key was pressed
  24.  
  25. Shift : BOOLEAN;
  26.  
  27. Returns TRUE if the SHIFT key was pressed
  28.  
  29. Command : BOOLEAN;
  30.  
  31. Returns TRUE if the COMMAND key was pressed
  32.  
  33.